home *** CD-ROM | disk | FTP | other *** search
/ MacWorld UK 2005 October / MW_UK_2005_10.iso / Data Backup 90-day trial / Data Backup.pkg.sit / Data Backup.pkg / Contents / Resources / preflight < prev    next >
Encoding:
Text File  |  2005-07-06  |  483 b   |  17 lines

  1. #!/bin/sh
  2. if [ -e /Library/StartupItems/Executor/Executor ]
  3. then
  4.     /Library/StartupItems/Executor/Executor stop
  5. fi
  6. if [ -e "/Library/Receipts/Data Backup.pkg" ]
  7. then
  8.     FOUND=`grep "Data Backup 2.0.[012]" "/Library/Receipts/Data Backup.pkg/Contents/Info.plist"`
  9. # we're compatible with DB 2.0.3 and greater preferences..  For any other versions
  10. # wipe them out
  11.     if [ ! -z "$FOUND" ]
  12.     then
  13.         rm -rf /Library/Preferences/com.prosofteng.databackup
  14.         rm -rf /Library/Logs/databackup
  15.     fi
  16. fi
  17.